home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / misc / sss.lha / sss / cod / defs.i < prev    next >
Text File  |  1994-06-20  |  1KB  |  57 lines

  1. *******************************************************************************
  2. * defs 1.3.3
  3. *******************************************************************************
  4.  
  5.  
  6.  
  7. *******************************************************************************
  8. * exec_lib
  9.  
  10. _LVOAllocMem    =    -198
  11. _LVOFreeMem    =    -210
  12. _LVOAvailMem    =    -216
  13. _LVOCloseLibrary =    -414
  14. _LVOOpenLibrary    =    -552
  15.  
  16.  
  17.  
  18. *******************************************************************************
  19. * dos_lib
  20.  
  21. _LVOOpen    =    -30
  22. _LVOClose    =    -36
  23. _LVORead    =    -42
  24. _LVOWrite    =    -48
  25. _LVOOutPut    =    -60
  26. _LVOExamineFH    =    -390
  27.  
  28.  
  29.  
  30. *******************************************************************************
  31. * misc OS constants
  32.  
  33. fib_Size    =    124
  34. MODE_OLDFILE    =    1005
  35. MODE_NEWFILE    =    1006
  36. MEMF_LARGEST    =    1<<17
  37. SIGBREAKB_CTRL_C =    12
  38. SIGBREAKF_CTRL_C =    1<<SIGBREAKB_CTRL_C
  39.  
  40.  
  41.  
  42. *******************************************************************************
  43. * internal
  44.  
  45. MAXCHNKSNO    =    10000
  46.  
  47. F_QUIETMODE    =    0    ;0=OFF; 1=ON
  48. F_SOUFLFND    =    1    ;0=not found; 1=found
  49. F_DSTBSFND    =    2    ;0=not found; 1=found
  50.  
  51. E_LOWMEM    =    1    ;low memory
  52. E_SOUFL    =    2    ;can't open input file
  53. E_CHNKSZ    =    3    ;wrong chunk size
  54. E_DSTFL    =    4    ;can't write to output file
  55. E_CHNKNO    =    5    ;max 10000 chunks
  56. E_USRBRK    =    6    ;CTRL-C pressed
  57.